home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Games / MAME / src / cheat.h < prev    next >
C/C++ Source or Header  |  2000-05-13  |  384b  |  19 lines

  1. /*********************************************************************
  2.  
  3.   cheat.h
  4.  
  5. *********************************************************************/
  6.  
  7. #ifndef CHEAT_H
  8. #define CHEAT_H
  9.  
  10. extern int he_did_cheat;
  11.  
  12. void InitCheat(void);
  13. void StopCheat(void);
  14.  
  15. int cheat_menu(struct osd_bitmap *bitmap, int selection);
  16. void DoCheat(struct osd_bitmap *bitmap);
  17.  
  18. #endif
  19.